home *** CD-ROM | disk | FTP | other *** search
/ Champak 64 / Volume 64 - JOGO DISK .iso / Games / We_Are_Human.swf / scripts / DefineSprite_44_scream / frame_1 / DoAction.as
Text File  |  2008-04-25  |  285b  |  15 lines

  1. onEnterFrame = function()
  2. {
  3.    _Y = _Y + 7;
  4.    if(this.hit.hitTest(_root.p1.bod))
  5.    {
  6.       _root.addScore(-2000);
  7.       this.removeMovieClip();
  8.    }
  9.    if(this._x > 700 or this._x < -100 or this._y > 600 or _Y < -100)
  10.    {
  11.       this.removeMovieClip();
  12.    }
  13. };
  14. stop();
  15.